mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
pythonPackages.pyctr: init at 0.6.0
This commit is contained in:
parent
5c83eaa1a1
commit
377543b67f
24
pkgs/development/python-modules/pyctr/default.nix
Normal file
24
pkgs/development/python-modules/pyctr/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
@ -6769,6 +6769,8 @@ in {
|
||||
|
||||
pyct = callPackage ../development/python-modules/pyct { };
|
||||
|
||||
pyctr = callPackage ../development/python-modules/pyctr { };
|
||||
|
||||
pycuda = callPackage ../development/python-modules/pycuda {
|
||||
cudatoolkit = pkgs.cudatoolkit;
|
||||
inherit (pkgs.stdenv) mkDerivation;
|
||||
|
Loading…
Reference in New Issue
Block a user