lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pypytools: init at 0.6.2

authored by

Fabian Affolter and committed by
Martin Weinelt
8e4e9697 64860508

+55
+53
pkgs/development/python-modules/pypytools/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchpatch 4 + , fetchPypi 5 + , freezegun 6 + , numpy 7 + , py 8 + , pytestCheckHook 9 + , pythonOlder 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pypytools"; 14 + version = "0.6.2"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchPypi { 20 + inherit pname version; 21 + hash = "sha256-oUDAU+TRwLroNfQGYusAQKdRkHcazysqiDLfp77v5Sk="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + py 26 + ]; 27 + 28 + checkInputs = [ 29 + freezegun 30 + numpy 31 + pytestCheckHook 32 + ]; 33 + 34 + patches = [ 35 + # Support for later Python releases, https://github.com/antocuni/pypytools/pull/2 36 + (fetchpatch { 37 + name = "support-later-python.patch"; 38 + url = "https://github.com/antocuni/pypytools/commit/c6aed496ec35a6ef7ce9e95084849eebc16bafef.patch"; 39 + sha256 = "sha256-YoYRZmgueQmxRtGaeP4zEVxuA0U7TB0PmoYHHVI7ICQ="; 40 + }) 41 + ]; 42 + 43 + pythonImportsCheck = [ 44 + "pypytools" 45 + ]; 46 + 47 + meta = with lib; { 48 + description = "Collection of tools to use PyPy-specific features"; 49 + homepage = "https://github.com/antocuni/pypytools"; 50 + license = licenses.mit; 51 + maintainers = with maintainers; [ fab ]; 52 + }; 53 + }
+2
pkgs/top-level/python-packages.nix
··· 7254 7254 7255 7255 pypykatz = callPackage ../development/python-modules/pypykatz { }; 7256 7256 7257 + pypytools = callPackage ../development/python-modules/pypytools { }; 7258 + 7257 7259 pyqrcode = callPackage ../development/python-modules/pyqrcode { }; 7258 7260 7259 7261 pyqt-builder = callPackage ../development/python-modules/pyqt-builder { };