mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
36 lines
728 B
Nix
36 lines
728 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pycryptodomex
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyctr";
|
|
version = "0.7.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fiDJWcypFabnUoS313f56ypDuDrLASHrkk0Em8bymmw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pycryptodomex
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|