python3Packages.simplesat: init at 0.8.2

This commit is contained in:
GenericNerdyUsername 2023-01-27 00:50:58 +00:00 committed by Sandro Jäckel
parent 601006e6ba
commit 286e27c139
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ buildPythonPackage
, fetchFromGitHub
, writeText
, lib
, attrs
, six
, okonomiyaki
}:
let
version = "0.8.2";
versionFile = writeText "simplesat_ver" ''
version = '${version}'
full_version = '${version}'
git_revision = '0000000000000000000000000000000000000000'
is_released = True
msi_version = '${version}.000'
version_info = (${lib.versions.major version}, ${lib.versions.minor version}, ${lib.versions.patch version}, 'final', 0)
'';
in buildPythonPackage rec {
pname = "simplesat";
inherit version;
propagatedBuildInputs = [ attrs six okonomiyaki ];
src = fetchFromGitHub {
owner = "enthought";
repo = "sat-solver";
rev = "v${version}";
hash = "sha256-6BQn1W2JGrMmNqgxi+sXx06XzNMcvwqYGMkpD0SSpT8=";
};
preConfigure = ''
cp ${versionFile} simplesat/_version.py
'';
dontUseSetuptoolsCheck = true;
pythonImportsCheck = [ "simplesat" ];
meta = with lib; {
homepage = "https://github.com/enthought/sat-solver";
description = "Prototype for SAT-based dependency handling";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.bsd3;
};
}

View file

@ -11039,6 +11039,8 @@ self: super: with self; {
simplenote = callPackage ../development/python-modules/simplenote { };
simplesat = callPackage ../development/python-modules/simplesat { };
simple-di = callPackage ../development/python-modules/simple-di { };
simple-rest-client = callPackage ../development/python-modules/simple-rest-client { };