Merge pull request #257549 from r-ryantm/auto-update/python310Packages.pyctr

python310Packages.pyctr: 0.6.0 -> 0.7.1
This commit is contained in:
Fabian Affolter 2023-10-01 11:09:59 +02:00 committed by GitHub
commit e1992f901c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
}; };
} }