wheel-filename: init at 1.3.0

This commit is contained in:
ayazhafiz 2021-10-31 21:43:56 -04:00
parent 7638773c6a
commit f5014e47fe
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchurl
, attrs
}:
buildPythonPackage rec {
pname = "wheel-filename";
version = "1.3.0";
format = "wheel";
src = fetchurl {
url = "https://github.com/jwodder/wheel-filename/releases/download/v1.1.0/wheel_filename-1.1.0-py3-none-any.whl";
sha256 = "0aee45553f34e3a1b8a5db64aa832326f13c138b7f925a53daf96f984f9e6a38";
};
buildInputs = [
attrs
];
meta = with lib; {
homepage = "https://github.com/jwodder/wheel-filename";
description = "Parse wheel filenames";
license = with licenses; [ mit ];
};
}

View File

@ -9793,6 +9793,8 @@ in {
wheel = callPackage ../development/python-modules/wheel { };
wheel-filename = callPackage ../development/python-modules/wheel-filename { };
whichcraft = callPackage ../development/python-modules/whichcraft { };
whirlpool-sixth-sense = callPackage ../development/python-modules/whirlpool-sixth-sense { };