-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
pysolfc: 2.6.4 -> 2.8.0 #82183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pysolfc: 2.6.4 -> 2.8.0 #82183
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { stdenv, fetchPypi, python }: | ||
|
|
||
| python.pkgs.buildPythonPackage rec { | ||
| pname = "pycotap"; | ||
| version = "1.2.2"; | ||
|
|
||
| src = fetchPypi { | ||
| inherit pname version; | ||
| sha256 = "f938ecd4931ccd19d9598fb633d5eabb7938f08b84717315e52526aa6277c9ec"; | ||
| }; | ||
|
|
||
| meta = with stdenv.lib; { | ||
| homepage = "https://el-tramo.be/pycotap"; | ||
| description = "A tiny test runner that outputs TAP results to standard output"; | ||
| license = licenses.mit; | ||
| maintainers = with maintainers; [ genesis ]; | ||
| }; | ||
|
|
||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,25 @@ | ||||||||||||||
| { stdenv, fetchPypi, python }: | ||||||||||||||
|
|
||||||||||||||
| python.pkgs.buildPythonPackage rec { | ||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
| pname = "pysol_cards"; | ||||||||||||||
| version = "0.8.8"; | ||||||||||||||
|
|
||||||||||||||
| src = fetchPypi { | ||||||||||||||
| inherit pname version; | ||||||||||||||
| sha256 = "0w0waj7r1kqlpic6g3pyg4208i393gc0zxb6n6k0vqhm6nivdcs5"; | ||||||||||||||
| }; | ||||||||||||||
|
|
||||||||||||||
| propagatedBuildInputs = with python.pkgs; [ pbr random2 six ]; | ||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
|
||||||||||||||
| ## Need to fix test deps, relies on stestr and a few other packages that aren't available on nixpkgs | ||||||||||||||
| #checkInputs = with python.pkgs; [ pbr testtools stestr ]; | ||||||||||||||
| doCheck = false; | ||||||||||||||
|
Comment on lines
+14
to
+16
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe stestr suites are also able to be ran with pytest.
Suggested change
|
||||||||||||||
|
|
||||||||||||||
| meta = with stdenv.lib; { | ||||||||||||||
| homepage = "https://github.com/shlomif/pysol_cards"; | ||||||||||||||
| description = "Allow the python developer to generate the initial deals of some PySol FC games"; | ||||||||||||||
| license = licenses.mit; # expat version | ||||||||||||||
| maintainers = with maintainers; [ genesis ]; | ||||||||||||||
| }; | ||||||||||||||
|
|
||||||||||||||
| } | ||||||||||||||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since this is in python-modules, you should import the individual packages from the python package set, or else everything will be fixed to python2, and it create incoherence in some environments.