aboutsummaryrefslogtreecommitdiff
path: root/nix/flake8-isort.nix
blob: 385e4f7309bdc7d8faf80c205b10e0f0511c956b (plain)
1
2
3
4
5
6
7
8
9
10
11
{ buildPythonPackage, fetchPypi, python3Packages }:

buildPythonPackage rec {
  pname = "flake8-isort";
  version = "4.1.1";
  src = fetchPypi {
    inherit pname version;
    sha256 = "2BQwSrcObliFm8XD4iHi5ucclY5wBSOSAv7hnCT4Jxc=";
  };
  checkInputs = with python3Packages; [ flake8 isort pytest testfixtures ];
}