mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 07:06:41 +00:00
15 lines
396 B
Nix
15 lines
396 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"];
|
||
|
}
|