nixpkgs/pkgs/development/python-modules/modeled/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
763 B
Nix
Raw Normal View History

{ stdenv
, lib
2019-07-16 11:57:16 +00:00
, buildPythonPackage
, fetchPypi
, zetup
, six
, moretools
, path
, pytestCheckHook
2019-07-16 11:57:16 +00:00
}:
buildPythonPackage rec {
pname = "modeled";
version = "0.1.8";
src = fetchPypi {
extension = "zip";
inherit pname version;
sha256 = "1wcl3r02q10gxy4xw7g8x2wg2sx4sbawzbfcl7a5xdydrxl4r4v4";
2019-07-16 11:57:16 +00:00
};
buildInputs = [ zetup ];
2019-07-16 11:57:16 +00:00
propagatedBuildInputs = [ six moretools path ];
2019-07-16 11:57:16 +00:00
nativeCheckInputs = [ pytestCheckHook ];
2019-07-16 11:57:16 +00:00
2021-02-15 12:27:29 +00:00
pythonImportsCheck = [ "modeled" ];
2019-07-16 11:57:16 +00:00
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
2019-07-16 11:57:16 +00:00
description = "Universal data modeling for Python";
2021-02-15 12:27:29 +00:00
homepage = "https://github.com/modeled/modeled";
license = licenses.lgpl3Only;
2019-07-16 11:57:16 +00:00
maintainers = [ maintainers.costrouc ];
};
}