mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
02904a363b
Not only some nixpkgs facilities but it also includes a rustc that's too old to build pycddl.
20 lines
400 B
Nix
20 lines
400 B
Nix
{ fetchPypi
|
|
, buildPythonPackage
|
|
, parsley
|
|
, twisted
|
|
, unittestCheckHook
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "txi2p-tahoe";
|
|
version = "0.3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+Vs9zaFS+ACI14JNxEme93lnWmncdZyFAmnTH0yhOiY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ twisted parsley ];
|
|
checkInputs = [ unittestCheckHook ];
|
|
pythonImportsCheck = [ "parsley" "ometa"];
|
|
}
|