pythonPackages.pyavm: init at 0.9.4
This commit is contained in:
parent
d81b59b027
commit
50124a62c8
37
pkgs/development/python-modules/pyavm/default.nix
Normal file
37
pkgs/development/python-modules/pyavm/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
, astropy
|
||||
, astropy-helpers
|
||||
, pillow
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyavm";
|
||||
version = "0.9.4";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "PyAVM";
|
||||
inherit version;
|
||||
sha256 = "f298b864e5bc101ecbb0e46252e95e18a180ac28ba6ec362e63c12a7e914e386";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ astropy-helpers ];
|
||||
|
||||
checkInputs = [ pytest astropy pillow ];
|
||||
|
||||
checkPhase = "pytest";
|
||||
|
||||
# Disable automatic update of the astropy-helper module
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple pure-python AVM meta-data handling";
|
||||
homepage = http://astrofrog.github.io/pyavm/;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.smaret ];
|
||||
};
|
||||
}
|
@ -1526,6 +1526,8 @@ in {
|
||||
|
||||
cffi = callPackage ../development/python-modules/cffi { };
|
||||
|
||||
pyavm = callPackage ../development/python-modules/pyavm { };
|
||||
|
||||
pycollada = callPackage ../development/python-modules/pycollada { };
|
||||
|
||||
pycontracts = callPackage ../development/python-modules/pycontracts { };
|
||||
|
Loading…
Reference in New Issue
Block a user