Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 915ad2e9d81a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 344921c8e301
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Dec 31, 2020

  1. Copy the full SHA
    83a9c45 View commit details

Commits on Jan 1, 2021

  1. Merge pull request #108084 from SuperSandro2000/modeled

    pythonPackages.modeled: Fix hash, cleanup
    SuperSandro2000 authored Jan 1, 2021
    Copy the full SHA
    344921c View commit details
Showing with 6 additions and 18 deletions.
  1. +6 −18 pkgs/development/python-modules/modeled/default.nix
24 changes: 6 additions & 18 deletions pkgs/development/python-modules/modeled/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
, six
, moretools
, pathpy
, pytest
, pytestCheckHook
}:

buildPythonPackage rec {
@@ -15,31 +15,19 @@ buildPythonPackage rec {
src = fetchPypi {
extension = "zip";
inherit pname version;
sha256 = "64934c68cfcdb75ed4a1ccadcfd5d2a46bf1b8e8e81dde89ef0f042c401e94f1";
sha256 = "1wcl3r02q10gxy4xw7g8x2wg2sx4sbawzbfcl7a5xdydrxl4r4v4";
};

buildInputs = [
zetup
];
buildInputs = [ zetup ];

propagatedBuildInputs = [
six
moretools
pathpy
];
propagatedBuildInputs = [ six moretools pathpy ];

checkInputs = [
pytest
];

checkPhase = ''
pytest test
'';
checkInputs = [ pytestCheckHook ];

meta = with lib; {
description = "Universal data modeling for Python";
homepage = "https://bitbucket.org/userzimmermann/python-modeled";
license = licenses.lgpl3;
license = licenses.lgpl3Only;
maintainers = [ maintainers.costrouc ];
};
}