about summary refs log tree commit diff
path: root/pkgs/development/python-modules/unittest-data-provider/default.nix
blob: d6f3389540de0c39b61bede8285dccf4a3cfac71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  buildPythonPackage,
  lib,
  fetchPypi,
}:

buildPythonPackage rec {
  version = "1.0.1";
  format = "setuptools";
  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 ];
  };
}