pycodestyle: 2.0.0 -> 2.3.1
This commit is contained in:
parent
eb28340bac
commit
7b27f7c28f
19
pkgs/development/python-modules/pycodestyle/default.nix
Normal file
19
pkgs/development/python-modules/pycodestyle/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pycodestyle";
|
||||||
|
version = "2.3.1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0rk78b66p57ala26mdldl9lafr48blv5s659sah9q50qnfjmc8k8";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python style guide checker (formerly called pep8)";
|
||||||
|
homepage = https://pycodestyle.readthedocs.io;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ garbas ];
|
||||||
|
};
|
||||||
|
}
|
@ -10671,22 +10671,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pycodestyle = buildPythonPackage rec {
|
pycodestyle = callPackage ../development/python-modules/pycodestyle { };
|
||||||
name = "pycodestyle-${version}";
|
|
||||||
version = "2.0.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pycodestyle/${name}.tar.gz";
|
|
||||||
sha256 = "1rz2v8506mdjdyxcnv9ygiw6v0d4dqx8z5sjyjm0w2v32h5l5w1p";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Python style guide checker (formerly called pep8)";
|
|
||||||
homepage = https://pycodestyle.readthedocs.io;
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ garbas ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
filebytes = buildPythonPackage rec {
|
filebytes = buildPythonPackage rec {
|
||||||
name = "filebytes-0.9.12";
|
name = "filebytes-0.9.12";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user