Skip to content

Commit

Permalink
pythonPackages.pytest_expect: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Dec 25, 2016
1 parent c1dd42e commit 9f5e022
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/pytest-expect/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ buildPythonPackage
, lib
, fetchurl
, pytest
, u-msgpack-python
, six
}:

let
pname = "pytest-expect";
version = "1.1.0";
in buildPythonPackage rec {
name = "${pname}-${version}";

src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847";
};

buildInputs = [ pytest ];
propagatedBuildInputs = [ u-msgpack-python six ];

# Tests in neither the archive nor the repo
doCheck = false;

meta = {
description = "py.test plugin to store test expectations and mark tests based on them";
homepage = https://github.com/gsnedders/pytest-expect;
license = lib.licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5247,6 +5247,8 @@ in {
};
});

pytest-expect = callPackage ../development/python-modules/pytest-expect { };

pytest-virtualenv = buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-virtualenv";
Expand Down

0 comments on commit 9f5e022

Please sign in to comment.