lol

python3Packages.cppy: 1.2.1 -> 1.3.0

+11 -7
+11 -7
pkgs/development/python-modules/cppy/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - fetchPypi, 5 pythonOlder, 6 pytestCheckHook, 7 setuptools-scm, ··· 9 10 buildPythonPackage rec { 11 pname = "cppy"; 12 - version = "1.2.1"; 13 - format = "setuptools"; 14 disabled = pythonOlder "3.7"; 15 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-g7Q78XsQhawVxd69tCFU8Ti5KCNLIURzWJgfadDW/hs="; 19 }; 20 21 - nativeBuildInputs = [ setuptools-scm ]; 22 23 nativeCheckInputs = [ pytestCheckHook ]; 24 25 pythonImportsCheck = [ "cppy" ]; 26 27 meta = { 28 description = "C++ headers for C extension development"; 29 homepage = "https://github.com/nucleic/cppy"; 30 license = lib.licenses.bsd3;
··· 1 { 2 lib, 3 buildPythonPackage, 4 + fetchFromGitHub, 5 pythonOlder, 6 pytestCheckHook, 7 setuptools-scm, ··· 9 10 buildPythonPackage rec { 11 pname = "cppy"; 12 + version = "1.3.0"; 13 + pyproject = true; 14 + 15 disabled = pythonOlder "3.7"; 16 17 + src = fetchFromGitHub { 18 + owner = "nucleic"; 19 + repo = "cppy"; 20 + tag = version; 21 + hash = "sha256-RwwXwdjpq4ZjUyHkWoh3eaJDzIV3MargeoBJ+nTHsyg="; 22 }; 23 24 + build-system = [ setuptools-scm ]; 25 26 nativeCheckInputs = [ pytestCheckHook ]; 27 28 pythonImportsCheck = [ "cppy" ]; 29 30 meta = { 31 + changelog = "https://github.com/nucleic/cppy/releases/tag/${src.tag}"; 32 description = "C++ headers for C extension development"; 33 homepage = "https://github.com/nucleic/cppy"; 34 license = lib.licenses.bsd3;