mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
pythonPackages.fasteners: fix test runner
This commit is contained in:
parent
c882af9cf3
commit
945872dc19
@ -13649,7 +13649,14 @@ in modules // {
|
||||
sha256 = "0nghdq3zihiqg10dp76ls7yn44m5wjncyz7fk8isagkrspkh9a3n";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ six monotonic ];
|
||||
propagatedBuildInputs = with self; [ six monotonic testtools ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
# Tests are written for Python 3.x only (concurrent.futures)
|
||||
doCheck = isPy3k;
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Fasteners";
|
||||
|
Loading…
Reference in New Issue
Block a user