1{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
2, numpy
3}:
4
5buildPythonPackage rec {
6 pname = "lightparam";
7 version = "0.3.7";
8 disabled = !isPy3k;
9 format = "wheel";
10
11 src = fetchPypi {
12 inherit pname version;
13 format = "wheel";
14 python = "py3";
15 sha256 = "53d5d5b225bac27bc14929c9ad4e51ece4f692813dd367f317fb1586145d93f1";
16 };
17
18 propagatedBuildInputs = [
19 numpy
20 ];
21
22 meta = {
23 homepage = "https://github.com/portugueslab/lightparam";
24 description = "Another attempt at parameters in Python";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ tbenst ];
27 };
28}