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

Configure Feed

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

python310Packages.verspec: init at 0.1.0

+44
+42
pkgs/development/python-modules/verspec/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pretend 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "verspec"; 11 + version = "0.1.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + sha256 = "sha256-xFBMppeyBWzbS/pxIUYfWg6BgJJVtBwD3aS6gjY3wB4="; 19 + }; 20 + 21 + nativeCheckInputs = [ 22 + pretend 23 + pytestCheckHook 24 + ]; 25 + 26 + disabledTestPaths = [ 27 + # Import fail 28 + "test/test_specifiers.py" 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "verspec" 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Flexible version handling"; 37 + homepage = "https://github.com/jimporter/verspec"; 38 + changelog = "https://github.com/jimporter/averspec/releases/tag/v${version}"; 39 + license = with licenses; [ bsd2 /* and */ asl20 ]; 40 + maintainers = with maintainers; [ marsam ]; 41 + }; 42 + }
+2
pkgs/top-level/python-packages.nix
··· 12750 12750 12751 12751 versiontools = callPackage ../development/python-modules/versiontools { }; 12752 12752 12753 + verspec = callPackage ../development/python-modules/verspec { }; 12754 + 12753 12755 vertica-python = callPackage ../development/python-modules/vertica-python { }; 12754 12756 12755 12757 veryprettytable = callPackage ../development/python-modules/veryprettytable { };