python.pkgs.MDP: fix expression
This commit is contained in:
parent
6d282fa3b6
commit
ed81943bde
@ -1,16 +1,15 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, pytest_29, future, numpy }:
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, future, numpy }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "MDP";
|
pname = "MDP";
|
||||||
version = "3.5";
|
version = "3.5";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
|
sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest_29 ];
|
checkInputs = [ pytest ];
|
||||||
propagatedBuildInputs = [ future numpy ];
|
propagatedBuildInputs = [ future numpy ];
|
||||||
|
|
||||||
# Tests disabled because of missing dependencies not in nix
|
# Tests disabled because of missing dependencies not in nix
|
||||||
|
Loading…
x
Reference in New Issue
Block a user