aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pytest-isort/default.nix
blob: 9aa4410ec030d57e2549adcc6ac237919557c77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, pytest, isort }:

buildPythonPackage rec {
  pname = "pytest-isort";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4bfee60dad1870b51700d55a85f5ceda766bd9d3d2878c1bbabee80e61b1be1a";
  };

  propagatedBuildInputs = [ isort ];

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test -vs --cache-clear
  '';

  meta = with lib; {
    description = "Pytest plugin to perform isort checks (import ordering)";
    homepage = "https://github.com/moccu/pytest-isort/";
    license = licenses.bsd3;
  };
}