mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
22 lines
495 B
Nix
22 lines
495 B
Nix
{ 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 ];
|
|
};
|
|
}
|