nixpkgs/pkgs/development/python-modules/pyavm/default.nix
Fabian Affolter bf9ecde815
python3Packages.pyavm: 0.9.4 -> 0.9.5 (#130230)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-07-15 22:10:31 +02:00

44 lines
839 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, astropy
, astropy-helpers
, pillow
}:
buildPythonPackage rec {
pname = "pyavm";
version = "0.9.5";
src = fetchPypi {
pname = "PyAVM";
inherit version;
sha256 = "sha256-gV78ypvYwohHmdjP3lN5F97PfmxuV91tvw5gsYeZ7i8=";
};
propagatedBuildInputs = [
astropy-helpers
];
checkInputs = [
astropy
pillow
pytestCheckHook
];
# Disable automatic update of the astropy-helper module
postPatch = ''
substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
'';
pythonImportsCheck = [ "pyavm" ];
meta = with lib; {
description = "Simple pure-python AVM meta-data handling";
homepage = "https://astrofrog.github.io/pyavm/";
license = licenses.mit;
maintainers = with maintainers; [ smaret ];
};
}