mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
pytestdjango: init at 2.9.1
This commit is contained in:
parent
c2d9c35ebd
commit
840d878ec2
@ -4197,6 +4197,28 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
pytestdjango = buildPythonPackage rec {
|
||||
name = "pytest-django-${version}";
|
||||
version = "2.9.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pytest-django/${name}.tar.gz";
|
||||
sha256 = "1mmc7zsz3dlhs6sx4sppkj1vgshabi362r1a8b8wpj1qfximpqcb";
|
||||
};
|
||||
|
||||
# doing this to allow depending packages to find
|
||||
# pytest's binaries
|
||||
pytest = self.pytest;
|
||||
|
||||
propagatedBuildInputs = with self; [ django pytest setuptools_scm_18 ];
|
||||
|
||||
meta = {
|
||||
description = "py.test plugin for testing of Django applications";
|
||||
homepage = http://pytest-django.readthedocs.org/en/latest/;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
|
||||
pytestflakes = buildPythonPackage rec {
|
||||
name = "pytest-flakes-${version}";
|
||||
version = "1.0.0";
|
||||
@ -19680,6 +19702,16 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
setuptools_scm_18 = self.setuptools_scm.override rec {
|
||||
name = "setuptools_scm-${version}";
|
||||
version = "1.8.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2";
|
||||
sha256 = "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx";
|
||||
};
|
||||
};
|
||||
|
||||
setuptoolsDarcs = buildPythonPackage rec {
|
||||
name = "setuptools_darcs-${version}";
|
||||
version = "1.2.11";
|
||||
|
Loading…
Reference in New Issue
Block a user