Merge pull request #309716 from RmiTtro/pipetools

python3Packages.pipetools: init at 1.1.0

authored by Matthias Beyer and committed by GitHub c2f97d3f c646f3c6

+34
+32
pkgs/development/python-modules/pipetools/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytestCheckHook, 6 + setuptools, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pipetools"; 11 + version = "1.1.0"; 12 + 13 + # Used github as the src since the pypi package does not include the tests 14 + src = fetchFromGitHub { 15 + owner = "0101"; 16 + repo = pname; 17 + rev = "6cba9fadab07a16fd85eed16d5cffc609f84c62b"; 18 + hash = "sha256-BoZFePQCQfz1dkct5p/WQLuXoNX3eLcnKf3Mf0fG6u8="; 19 + }; 20 + 21 + nativeCheckInputs = [ pytestCheckHook ]; 22 + 23 + propagatedBuildInputs = [ setuptools ]; 24 + 25 + pythonImportsCheck = [ "pipetools" ]; 26 + 27 + meta = { 28 + description = "A library that enables function composition similar to using Unix pipes"; 29 + homepage = "https://0101.github.io/pipetools/"; 30 + license = lib.licenses.mit; 31 + }; 32 + }
+2
pkgs/top-level/python-packages.nix
··· 9675 9675 9676 9676 pins = callPackage ../development/python-modules/pins { }; 9677 9677 9678 + pipetools = callPackage ../development/python-modules/pipetools { }; 9679 + 9678 9680 pg8000 = callPackage ../development/python-modules/pg8000 { }; 9679 9681 9680 9682 pgcli = callPackage ../development/python-modules/pgcli { };