mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
19 lines
349 B
Nix
19 lines
349 B
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "haccrypto";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-PHkAxy0lq7SsdQlKSq2929Td8UDFVMleCYnq2t1xg44=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"haccrypto"
|
|
];
|
|
}
|