mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.chai : init at 1.1.1
This commit is contained in:
parent
9549257714
commit
e9cd37110d
1 changed files with 14 additions and 0 deletions
|
@ -918,6 +918,20 @@ in modules // {
|
|||
|
||||
});
|
||||
|
||||
chai = buildPythonPackage rec {
|
||||
name = "chai-${version}";
|
||||
version = "1.1.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/c/chai/${name}.tar.gz";
|
||||
sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Mocking, stubbing and spying framework for python";
|
||||
};
|
||||
};
|
||||
|
||||
arrow = buildPythonPackage rec {
|
||||
name = "arrow-${version}";
|
||||
version = "0.5.0";
|
||||
|
|
Loading…
Reference in a new issue