Merge pull request #257549 from r-ryantm/auto-update/python310Packages.pyctr
python310Packages.pyctr: 0.6.0 -> 0.7.1
This commit is contained in:
commit
e1992f901c
1 changed files with 18 additions and 7 deletions
|
@ -1,24 +1,35 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
{ lib
|
||||||
, pycryptodomex }:
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
, pycryptodomex
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyctr";
|
pname = "pyctr";
|
||||||
version = "0.6.0";
|
version = "0.7.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-05lMcsIeJIHI3LwHQTjr4M+bn1FG+GQscuGq34XxjK8=";
|
hash = "sha256-SnCps5nzrl+dkbloRbjhaOGDzKOsi8OHX2JXgoJ/XG0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pycryptodomex ];
|
propagatedBuildInputs = [
|
||||||
|
pycryptodomex
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "pyctr" ];
|
pythonImportsCheck = [
|
||||||
|
"pyctr"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library to interact with Nintendo 3DS files";
|
description = "Python library to interact with Nintendo 3DS files";
|
||||||
|
homepage = "https://github.com/ihaveamac/pyctr";
|
||||||
|
changelog = "https://github.com/ihaveamac/pyctr/blob/v${version}/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ rileyinman ];
|
maintainers = with maintainers; [ rileyinman ];
|
||||||
homepage = "https://github.com/ihaveamac/pyctr";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue