nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #53830 from jethrokuan/pkg-init/pyment

pythonPackages.pyment: init at 0.3.3

authored by

worldofpeace and committed by
GitHub
0f017ed0 532c8f95

+24
+22
pkgs/development/python-modules/pyment/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pyment"; 5 + version = "0.3.3"; 6 + 7 + src = fetchPypi { 8 + pname = "Pyment"; 9 + inherit version; 10 + sha256 = "951a4c52d6791ccec55bc739811169eed69917d3874f5fe722866623a697f39d"; 11 + }; 12 + 13 + # Tests are not included in PyPI tarball 14 + doCheck = false; 15 + 16 + meta = with lib; { 17 + homepage = https://github.com/dadadel/pyment; 18 + description = "Create, update or convert docstrings in existing Python files, managing several styles"; 19 + license = licenses.gpl3; 20 + maintainers = with maintainers; [ jethro ]; 21 + }; 22 + }
+2
pkgs/top-level/python-packages.nix
··· 3598 3598 3599 3599 pygpgme = callPackage ../development/python-modules/pygpgme { }; 3600 3600 3601 + pyment = callPackage ../development/python-modules/pyment { }; 3602 + 3601 3603 pylint = if isPy3k then callPackage ../development/python-modules/pylint { } 3602 3604 else callPackage ../development/python-modules/pylint/1.9.nix { }; 3603 3605