nixpkgs/pkgs/development/python-modules/wheel-filename/default.nix
Fabian Affolter 5962fe0782 python310Packages.wheel-filename: 1.3.0 -> 1.4.1
- use GitHub as source
- enable tests
- add pythonImportsCheck
2022-06-05 23:32:21 +02:00

47 lines
855 B
Nix

{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "wheel-filename";
version = "1.4.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jwodder";
repo = pname;
rev = "v${version}";
hash = "sha256-M3XGHG733X5qKuMS6mvFSFHYOwWPaBMXw+w0eYo6ByE=";
};
buildInputs = [
attrs
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace tox.ini \
--replace " --cov=wheel_filename --no-cov-on-fail" ""
'';
pythonImportsCheck = [
"wheel_filename"
];
meta = with lib; {
description = "Parse wheel filenames";
homepage = "https://github.com/jwodder/wheel-filename";
license = with licenses; [ mit ];
maintainers = with lib.maintainers; [ ayazhafiz ];
};
}