My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyctr/default.nix

24 lines
605 B

{ lib, buildPythonPackage, fetchPypi, pythonOlder
, pycryptodomex }:
buildPythonPackage rec {
pname = "pyctr";
version = "0.6.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-05lMcsIeJIHI3LwHQTjr4M+bn1FG+GQscuGq34XxjK8=";
};
propagatedBuildInputs = [ pycryptodomex ];
pythonImportsCheck = [ "pyctr" ];
meta = with lib; {
description = "Python library to interact with Nintendo 3DS files";
license = licenses.mit;
maintainers = with maintainers; [ rileyinman ];
homepage = "https://github.com/ihaveamac/pyctr";
};
}