python310Packages.pipdate: 0.5.5 -> 0.5.6
This commit is contained in:
parent
1ac9ac82f2
commit
c2077b071c
1 changed files with 9 additions and 5 deletions
|
@ -1,9 +1,10 @@
|
|||
{ lib
|
||||
, appdirs
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, appdirs
|
||||
, importlib-metadata
|
||||
, packaging
|
||||
, pythonOlder
|
||||
, requests
|
||||
, rich
|
||||
, setuptools
|
||||
|
@ -12,19 +13,22 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pipdate";
|
||||
version = "0.5.5";
|
||||
version = "0.5.6";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03hr9i691cpg9q2xc1xr4lpd90xs8rba0xjh6qmc1vg7lgcdgbaa";
|
||||
hash = "sha256-G2t+wsVGj7cDbsnWss7XqKU421WqygPzAZkhbTu9Jks=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ wheel ];
|
||||
nativeBuildInputs = [
|
||||
wheel
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
packaging
|
||||
requests
|
||||
rich
|
||||
setuptools
|
||||
|
|
Loading…
Reference in a new issue