2017-09-07 09:17:55 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pbr
|
|
|
|
, testtools
|
|
|
|
, mock
|
|
|
|
, python
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fixtures";
|
2017-09-07 09:18:44 +01:00
|
|
|
version = "3.0.0";
|
2017-09-07 09:17:55 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-09-07 09:18:44 +01:00
|
|
|
sha256 = "fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef";
|
2017-09-07 09:17:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pbr testtools mock ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m testtools.run fixtures.test_suite
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Reusable state for writing clean tests and more";
|
|
|
|
homepage = "https://pypi.python.org/pypi/fixtures";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|