Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyctr / default.nix
blobcf225369b3958af0f7c354ee14d173e17cff284f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , pycryptodomex
6 }:
8 buildPythonPackage rec {
9   pname = "pyctr";
10   version = "0.7.5";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-fiDJWcypFabnUoS313f56ypDuDrLASHrkk0Em8bymmw=";
18   };
20   propagatedBuildInputs = [
21     pycryptodomex
22   ];
24   pythonImportsCheck = [
25     "pyctr"
26   ];
28   meta = with lib; {
29     description = "Python library to interact with Nintendo 3DS files";
30     homepage = "https://github.com/ihaveamac/pyctr";
31     changelog = "https://github.com/ihaveamac/pyctr/blob/v${version}/CHANGELOG.md";
32     license = licenses.mit;
33     maintainers = with maintainers; [ rileyinman ];
34   };