mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
unittest-data-providers: init at 1.0.1
This commit is contained in:
parent
4edfccc22a
commit
51f401f04e
2 changed files with 23 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.0.1";
|
||||
pname = "unittest-data-provider";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1gn2ka4vqpayx4cpbp8712agqjh3wdpk9smdxnp709ccc2v7zg46";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "PHPUnit-like @dataprovider decorator for unittest";
|
||||
homepage = https://github.com/yourlabs/unittest-data-provider;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
|
@ -5330,6 +5330,8 @@ in {
|
|||
|
||||
units = callPackage ../development/python-modules/units { };
|
||||
|
||||
unittest-data-provider = callPackage ../development/python-modules/unittest-data-provider { };
|
||||
|
||||
unittest2 = callPackage ../development/python-modules/unittest2 { };
|
||||
|
||||
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };
|
||||
|
|
Loading…
Reference in a new issue