Skip to content

Commit

Permalink
Merge pull request NixOS#261325 from r-ryantm/auto-update/python310Pa…
Browse files Browse the repository at this point in the history
…ckages.siuba

python310Packages.siuba: 0.4.2 -> 0.4.4
  • Loading branch information
fabaff authored Oct 16, 2023
2 parents ea61b75 + 3184812 commit 5090289
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/development/python-modules/siuba/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@

buildPythonPackage rec {
pname = "siuba";
version = "0.4.2";
disabled = pythonOlder "3.7";

version = "0.4.4";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "machow";
repo = "siuba";
rev = "refs/tags/v${version}";
hash = "sha256-Q2nkK51bmIO2OcBuWu+u7yB8UmaqiZJXpuxXcytTlUY=";
hash = "sha256-rd/yQH3sbZqQAQ1AN44vChe30GMJuIlZj3Ccfv1m3lU=";
};

propagatedBuildInputs = [
Expand All @@ -45,8 +45,9 @@ buildPythonPackage rec {
hypothesis
pytestCheckHook
];
doCheck = false;

# requires running mysql and postgres instances; see docker-compose.yml
doCheck = false;

pythonImportsCheck = [
"siuba"
Expand All @@ -56,6 +57,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Use dplyr-like syntax with pandas and SQL";
homepage = "https://siuba.org";
changelog = "https://github.com/machow/siuba/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
Expand Down

0 comments on commit 5090289

Please sign in to comment.