mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
pythonPackages.structlog: add six to propagatedBuildInputs
Move simplejson to checkInputs
This commit is contained in:
parent
4207f01f27
commit
82f3fc0c83
@ -6,6 +6,7 @@
|
||||
, pretend
|
||||
, freezegun
|
||||
, simplejson
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -25,8 +26,8 @@ buildPythonPackage rec {
|
||||
})
|
||||
];
|
||||
|
||||
checkInputs = [ pytest pretend freezegun ];
|
||||
propagatedBuildInputs = [ simplejson ];
|
||||
checkInputs = [ pytest pretend freezegun simplejson ];
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkPhase = ''
|
||||
rm tests/test_twisted.py*
|
||||
|
Loading…
Reference in New Issue
Block a user