python310Packages.pyctr: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-09-27 11:10:16 +02:00 committed by GitHub
parent 926da4b614
commit 4c01cd1c59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,15 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, pycryptodomex }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pycryptodomex
}:
buildPythonPackage rec {
pname = "pyctr";
version = "0.7.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
@ -11,14 +17,19 @@ buildPythonPackage rec {
hash = "sha256-SnCps5nzrl+dkbloRbjhaOGDzKOsi8OHX2JXgoJ/XG0=";
};
propagatedBuildInputs = [ pycryptodomex ];
propagatedBuildInputs = [
pycryptodomex
];
pythonImportsCheck = [ "pyctr" ];
pythonImportsCheck = [
"pyctr"
];
meta = with lib; {
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;
maintainers = with maintainers; [ rileyinman ];
homepage = "https://github.com/ihaveamac/pyctr";
};
}