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
|
{ lib
|
||||||
|
, appdirs
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
|
||||||
, appdirs
|
|
||||||
, importlib-metadata
|
, importlib-metadata
|
||||||
|
, packaging
|
||||||
|
, pythonOlder
|
||||||
, requests
|
, requests
|
||||||
, rich
|
, rich
|
||||||
, setuptools
|
, setuptools
|
||||||
|
@ -12,19 +13,22 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pipdate";
|
pname = "pipdate";
|
||||||
version = "0.5.5";
|
version = "0.5.6";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "03hr9i691cpg9q2xc1xr4lpd90xs8rba0xjh6qmc1vg7lgcdgbaa";
|
hash = "sha256-G2t+wsVGj7cDbsnWss7XqKU421WqygPzAZkhbTu9Jks=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ wheel ];
|
nativeBuildInputs = [
|
||||||
|
wheel
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
appdirs
|
appdirs
|
||||||
|
packaging
|
||||||
requests
|
requests
|
||||||
rich
|
rich
|
||||||
setuptools
|
setuptools
|
||||||
|
|
Loading…
Reference in a new issue