mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
63fa53d97c
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
45 lines
837 B
Nix
45 lines
837 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zetup,
|
|
six,
|
|
moretools,
|
|
path,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "modeled";
|
|
version = "0.1.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
extension = "zip";
|
|
inherit pname version;
|
|
sha256 = "1wcl3r02q10gxy4xw7g8x2wg2sx4sbawzbfcl7a5xdydrxl4r4v4";
|
|
};
|
|
|
|
buildInputs = [ zetup ];
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
moretools
|
|
path
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "modeled" ];
|
|
|
|
meta = with lib; {
|
|
broken =
|
|
(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) || stdenv.hostPlatform.isDarwin;
|
|
description = "Universal data modeling for Python";
|
|
homepage = "https://github.com/modeled/modeled";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|