mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python-packages: Add package 'sure', v1.2.7.
Unfortunately the upstream version that can be found on PyPI doesn't include test cases, so we need to fetchgit and wait until tests will be shipped with a future upstream release. Reported at gabrielfalcao/sure#61. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
6863cd0910
commit
79d22ae015
1 changed files with 24 additions and 0 deletions
|
@ -7554,6 +7554,30 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
sure = buildPythonPackage rec {
|
||||
name = "sure-${version}";
|
||||
version = "1.2.7";
|
||||
|
||||
# Not picking up from PyPI because it doesn't contain tests.
|
||||
src = fetchgit {
|
||||
url = "git://github.com/gabrielfalcao/sure.git";
|
||||
rev = "86ab9faa97aa9c1720c7d090deac2be385ed3d7a";
|
||||
sha256 = "02vffcdgr6vbj80lhl925w7zqy6cqnfvs088i0rbkjs5lxc511b3";
|
||||
};
|
||||
|
||||
buildInputs = [ nose ];
|
||||
|
||||
propagatedBuildInputs = [ six mock ];
|
||||
|
||||
meta = {
|
||||
description = "Utility belt for automated testing";
|
||||
homepage = "http://falcao.it/sure/";
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
# XXX: ValueError: ZIP does not support timestamps before 1980
|
||||
# svneverever = buildPythonPackage rec {
|
||||
# name = "svneverever-778489a8";
|
||||
|
|
Loading…
Reference in a new issue