d17316fab6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-jaraco.classes/versions
14 lines
342 B
Nix
14 lines
342 B
Nix
{ buildPythonPackage, fetchPypi, setuptools_scm, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jaraco.classes";
|
|
version = "2.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1xfal9085bjh4fv57d6v9ibr5wf4llj73gp1ybdlqd2bralc9hnw";
|
|
};
|
|
doCheck = false;
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ six ];
|
|
}
|